home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer (Italian) 48 / PC Gamer IT CD 48 2-2.iso / Starsiege / tribesdemo.exe / Disk1 / data1.cab / Tribes_Demo / base / scripts.vol / mission.cs < prev    next >
Encoding:
Text File  |  1999-09-14  |  1.1 KB  |  57 lines

  1. //--------------------------------------------------------------------------
  2.  
  3. //--------------------------------------------------------------------------
  4.  
  5.  
  6. //--------------------------------------------------------------------------
  7.  
  8. StaticShapeData Example
  9. {
  10.    shapeFile = "radar";
  11.    shadowDetailLevel = 0;
  12. //   explosionId = 0;
  13.    ambientSoundId = IDSFX_GENERATOR;
  14.    maxDamage = 2.0;
  15. };
  16.  
  17. function Example::onAdd(%this)
  18. {
  19.    //echo("Example added: ", %this);
  20. }
  21.  
  22. function Example::onRemove(%this)
  23. {
  24.    //echo("Example removed: ", %this);
  25. }
  26.  
  27. function Example::onEnabled(%this)
  28. {
  29.    //echo("Example enabled");
  30. }
  31.  
  32. function Example::onDisabled(%this)
  33. {
  34.    //echo("Example disabled");
  35. }
  36.  
  37. function Example::onDestroyed(%this)
  38. {
  39.    //echo("Example destroyed");
  40. }
  41.  
  42. function Example::onPower(%this, %newState, %generator)
  43. {
  44.    //echo("Example power state: ", %newState);
  45. }
  46.  
  47. function Example::onCollision(%this, %object)
  48. {
  49.    //echo("Example collision with ", %object);
  50. }
  51.  
  52. function Example::onAttack(%this, %object)
  53. {
  54.    //echo("Example attacked ", %object);
  55. }
  56.  
  57.